home *** CD-ROM | disk | FTP | other *** search
- /* ======================================== */
- /* FINAL WRITER AREXX MACRO */
- /* by Nigel S. Domaingue, 28/1/95 */
- /* Draw_Oval */
- /* $Ver: Draw_Oval v1.0 (30/1/95) */
- /* ======================================== */
-
- Options Results
-
- /* Must determine the current page and the current */
- /* scroll-position so that the box will be placed */
- /* in the field of view. */
- /* Draws a 1" X 1" Oval. */
-
- Status Page
- CurPage = Result
-
- Status ScrollPos
- Parse VAR Result Left Top
- Top = Top + 1
- Left = Left + 1
-
- GraphicTool
- DrawOval CurPage Left Top 1 1
- Redraw
-
-